home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / include / incl98.zoo / nlist.h < prev    next >
C/C++ Source or Header  |  1993-10-26  |  228b  |  20 lines

  1. #ifndef _NLIST_H
  2.  
  3. #ifndef _COMPILER_H
  4. #include <compiler.h>
  5. #endif
  6.  
  7.  
  8. struct nlist
  9. {
  10.     char *n_name;
  11.     unsigned short n_type;
  12.     long n_value;
  13. };
  14.  
  15. __EXTERN int nlist __PROTO((char *file, struct nlist *nl));
  16.  
  17.  
  18. #define _NLIST_H
  19. #endif
  20.